crypto/cipher.ctr.ctr (field)

6 uses

	crypto/cipher (current package)
		ctr.go#L23: 	ctr     []byte
		ctr.go#L52: 		ctr:     bytes.Clone(iv),
		ctr.go#L64: 		x.b.Encrypt(x.out[remain:], x.ctr)
		ctr.go#L68: 		for i := len(x.ctr) - 1; i >= 0; i-- {
		ctr.go#L69: 			x.ctr[i]++
		ctr.go#L70: 			if x.ctr[i] != 0 {